home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / patches / _40xptch / ipxrt3 / make_ipx.bat < prev   
DOS Batch File  |  1996-07-10  |  2KB  |  65 lines

  1. ECHO off
  2. if %1$ == $%1 goto message
  3. goto proceed
  4. :message
  5. ECHO You have to give the destination drive as a command line parameter
  6. ECHO Example:    MAKE_IPX   a:
  7. goto finish
  8.  
  9. :proceed
  10.  
  11. ECHO You are about to make diskettes for 
  12. ECHO the NetWare IPX Router Upgrade kit.
  13. ECHO 1) Make sure you have 2 formatted diskettes.
  14. ECHO 2) Make sure you have a search drive to your dos utilities.
  15. PAUSE
  16.  
  17. CLS
  18. ECHO Please insert a formatted disk into drive %1
  19. PAUSE
  20. LABEL %1IPXSERV1
  21. COPY ipxserv1\*.* %1 /v
  22. md %1\utils
  23. cd %1\utils
  24. XCOPY ipxserv1\utils\*.* %1 /s /e /v
  25. md %1\etc
  26. cd %1\etc
  27. XCOPY ipxserv1\etc\*.* %1 /s /e /v
  28. md %1\ipx
  29. cd %1\ipx
  30. COPY ipxserv1\ipx\ipxcon.nl_ %1 /v
  31. COPY ipxserv1\ipx\ipxcon.hlp %1 /v
  32. COPY ipxserv1\ipx\ipxcon.msg %1 /v
  33. COPY ipxserv1\ipx\ipxping.nlm %1 /v
  34. COPY ipxserv1\ipx\ipxping.msg %1 /v
  35. COPY ipxserv1\ipx\ipxping.hlp %1 /v
  36. COPY ipxserv1\ipx\ipxrtr.nlm %1 /v
  37. COPY ipxserv1\ipx\ipxrtr.msg %1 /v
  38. COPY ipxserv1\ipx\ipxrtrnm.nlm %1 /v
  39. COPY ipxserv1\ipx\ipxrtrnm.msg %1 /v
  40. COPY ipxserv1\ipx\ipxstack.nlm %1 /v
  41. COPY ipxserv1\ipx\ipxstack.msg %1 /v
  42. cd %1\
  43. ECHO Please remove the diskette in drive %1
  44. ECHO Label the diskette "NetWare IPX Router Upgrade Disk 1"
  45. PAUSE
  46.  
  47. CLS
  48. ECHO Please insert a formatted disk into drive %1
  49. PAUSE
  50. LABEL %1IPXSERV2
  51. XCOPY ipxserv2\*.* %1 /s /e /v
  52. ECHO Please remove the diskette in drive %1
  53. ECHO Label the diskette "NetWare IPX Router Upgrade Disk 2"
  54. PAUSE
  55.  
  56.  
  57. ECHO **************************************************************
  58. ECHO * NetWare MultiProtocol Router diskettes made successfully ! *
  59. ECHO *       Thank you, Have a good day.                          *
  60. ECHO **************************************************************
  61.  
  62. :finish
  63.  
  64.  
  65.